1 : <?php
2 : /*--------------------------------------------------------------------------+
3 : This file is part of eStudy.
4 : suchmaschine/classes/class.pluginvoid.inc.php
5 : - Modulgruppe: Suche
6 : - Beschreibung: In dieser Datei wird die Klasse PluginVoid implementiert.
7 : - Version: 0.1 01/08/08
8 : - Autor(en): Jörg Rieger
9 : +---------------------------------------------------------------------------+
10 : This program is free software; you can redistribute it and/or
11 : modify it under the terms of the GNU General Public License
12 : as published by the Free Software Foundation; either version 2
13 : of the License, or any later version.
14 : +---------------------------------------------------------------------------+
15 : This program is distributed in the hope that it will be useful,
16 : but WITHOUT ANY WARRANTY; without even the implied warranty of
17 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 : GNU General Public License for more details.
19 : You should have received a copy of the GNU General Public License
20 : along with this program; if not, write to the Free Software
21 : Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 : +--------------------------------------------------------------------------*/
23 : /**
24 : * Path to Root falls nicht gesetzt
25 : */
26 1 : if (!defined('PATH_TO_ROOT')) {
27 0 : define("PATH_TO_ROOT", "../../");
28 :
29 0 : require_once('class.iindexer.inc.php');
30 0 : require_once('class.indexer.inc.php');
31 0 : }
32 :
33 : /**
34 : * Plugin Klasse Void
35 : *
36 : * @package eStudy.Suchmaschine
37 : * @version 0.1 01/08/08
38 : * @author Jörg Rieger
39 : */
40 :
41 1 : class PluginVoid extends Indexer {
42 : /**
43 : * Kontruktor
44 : *
45 : * @access public
46 : */
47 : public function __construct() {
48 0 : $this->name = 'Void';
49 :
50 0 : $this->fileExt = array();
51 0 : }
52 :
53 :
54 : /**
55 : * Öffnen der Datei
56 : *
57 : * @access public
58 : */
59 : public function open( $fileName ) {
60 0 : }
61 :
62 : /**
63 : * Lesen der Datei
64 : *
65 : * @access public
66 : */
67 : public function read() {
68 0 : }
69 :
70 : /**
71 : * Zurückgeben des Inhalts
72 : *
73 : * @access public
74 : */
75 : public function getContent() {
76 0 : }
77 :
78 : /**
79 : * Schliessen der Datei
80 : *
81 : * @access public
82 : */
83 : public function close() {
84 0 : }
85 :
86 : /**
87 : * Schliessen der Datei
88 : *
89 : * @access public
90 : */
91 : public function cleanup() {
92 0 : }
93 :
94 : }
|